home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / INTER40A.ZIP;1 / COMBINE.BAT next >
Encoding:
DOS Batch File  |  1994-04-03  |  429 b   |  15 lines

  1. @echo off
  2. for %%a in (a b c d e f g h i j k) do if not exist interrup.%%a goto missing
  3. echo Combining the pieces of the interrupt list
  4. echo.
  5. copy interrup.a interrup.lst >nul
  6. for %%a in (b c d e f g h i j k) do copy /b interrup.lst+interrup.%%a interrup.lst >nul
  7. echo The interrupt list has now been combined into INTERRUP.LST
  8. goto end
  9.  
  10. :missing
  11. echo Some sections of the interrupt list are missing.
  12. goto end
  13.  
  14. :end
  15.